home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 5 / MacMania 5.toast / / Tools&Utilities / Plotfoil 3.2 / makefile.txt < prev    next >
Makefile  |  1994-12-07  |  471b  |  25 lines

  1. #
  2. # Makefile for DOS version of plotfoil
  3. #
  4. # This make file is appropriate for Microsoft C Version 6.00A
  5. # and Microsoft NMAKE.
  6. #
  7. # Just type "nmake /f makefile.dos" to build the program.
  8. #
  9. # Andrew Patrick, andrew@calvin.dgbt.doc.ca
  10.  
  11. plotfoil.exe : plotfoil.obj spline.obj
  12.     link +plotfoil+spline+ui+ps_procs,plotfoil;
  13.  
  14. plotfoil.obj: plotfoil.c
  15.     cl /c plotfoil.c
  16.  
  17. spline.obj: spline.c
  18.     cl /c spline.c
  19.  
  20. ui.obj: ui.c
  21.     cl /c ui.c
  22.  
  23. ps_procs.obj: ps_procs.c
  24.     cl /c ps_procs.c
  25.